home *** CD-ROM | disk | FTP | other *** search
- <!--- This example shows the use of NumberFormat --->
- <HTML>
-
- <HEAD>
- <TITLE>
- NumberFormat Example
- </TITLE>
- </HEAD>
-
- <BASEFONT FACE="Arial, Helvetica" SIZE=2>
- <BODY bgcolor="#FFFFD5">
-
- <H3>NumberFormat Example</H3>
-
- <CFLOOP FROM=1000 TO=1020 INDEX="counter">
- <CFSET CounterRoot2 = Evaluate(counter * sqr(2))>
-
- <!--- Show the result in default format, adding the comma
- for the thousands place, and also in custom format,
- displaying to two decimal places --->
- <CFOUTPUT>
- <PRE>#counter# * Square Root of 2: #NumberFormat(CounterRoot2, '_____.__')#</PRE>
- <PRE>#counter# * Square Root of 2: #NumberFormat(CounterRoot2)#</PRE>
- </CFOUTPUT>
- </CFLOOP>
-
- </BODY>
-
- </HTML>
-